home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / X11 / Xmu / CvtCache.h < prev    next >
C/C++ Source or Header  |  2006-04-12  |  2KB  |  63 lines

  1. /* $Xorg: CvtCache.h,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */
  2.  
  3. /*
  4.  
  5. Copyright 1989, 1998  The Open Group
  6.  
  7. Permission to use, copy, modify, distribute, and sell this software and its
  8. documentation for any purpose is hereby granted without fee, provided that
  9. the above copyright notice appear in all copies and that both that
  10. copyright notice and this permission notice appear in supporting
  11. documentation.
  12.  
  13. The above copyright notice and this permission notice shall be included in
  14. all copies or substantial portions of the Software.
  15.  
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  19. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  20. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22.  
  23. Except as contained in this notice, the name of The Open Group shall not be
  24. used in advertising or otherwise to promote the sale, use or other dealings
  25. in this Software without prior written authorization from The Open Group.
  26.  
  27. */
  28. /* $XFree86: xc/lib/Xmu/CvtCache.h,v 1.6 2001/01/17 19:42:54 dawes Exp $ */
  29.  
  30. /*
  31.  *                   Public Interfaces
  32.  * 
  33.  * XmuCvtCache *XmuCvtCacheLookupDisplay (dpy)
  34.  *     Display *dpy;
  35.  */
  36.  
  37. #ifndef _XMU_CVTCACHE_H_
  38. #define _XMU_CVTCACHE_H_
  39.  
  40. #include <X11/Xmu/DisplayQue.h>
  41. #include <X11/Xfuncproto.h>
  42.  
  43. typedef struct _XmuCvtCache {
  44.     struct {
  45.     char **bitmapFilePath;
  46.     } string_to_bitmap;
  47.     /* add other per-display data that needs to be cached */
  48. } XmuCvtCache;
  49.  
  50. _XFUNCPROTOBEGIN
  51.  
  52. XmuCvtCache *_XmuCCLookupDisplay
  53. (
  54.  Display    *dpy
  55.  );
  56.  
  57. extern void _XmuStringToBitmapInitCache(XmuCvtCache *c);
  58. extern void _XmuStringToBitmapFreeCache(XmuCvtCache *c);
  59.  
  60. _XFUNCPROTOEND
  61.  
  62. #endif /* _XMU_CVTCACHE_H_ */
  63.